Get Historical Statistics of a Token
GET/stats/:tokenAddress
Get Historical Statistics of a Token
Request
Path Parameters
tokenAddress stringrequired
Token Contract Address
Example: 0x495d133B938596C9984d462F007B676bDc57eCEC
Query Parameters
limit integer
The number of days to return statistics for
Example: 7
apiKey stringrequired
(Required) Your Public API key
Example: {{publicKey}}
Responses
- 200
OK
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
data object[]
address string
price string
volume string
timestamp integer
date string
{
"data": [
{
"address": "string",
"price": "string",
"volume": "string",
"timestamp": 0,
"date": "string"
}
]
}
Loading...